home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 October / Macworld (1998-10).dmg / Serious Demos / Morpha / 3DO.DXR / 00035_all groups.ls < prev    next >
Encoding:
Text File  |  1998-07-31  |  559 b   |  28 lines

  1. property mys, mystore, spare
  2. global grouper
  3.  
  4. on beginSprite me
  5.   set mys to the spriteNum of me
  6. end
  7.  
  8. on mouseDown me
  9.   set spare to "all groups"
  10.   set grouper to 0
  11.   set mystore to 100
  12.   set the blend of sprite 31 to 40
  13.   set the blend of sprite 36 to 40
  14.   sendAllSprites(#blender)
  15. end
  16.  
  17. on mouseEnter me
  18.   set spare to the text of field "group"
  19.   set mystore to the blend of sprite mys
  20.   set the blend of sprite mys to 100
  21.   put "all groups" into field "group"
  22. end
  23.  
  24. on mouseLeave me
  25.   put spare into field "group"
  26.   set the blend of sprite mys to mystore
  27. end
  28.